HighlightSourceOrderRequest

data class HighlightSourceOrderRequest(sourceOrderConfig: SourceOrderConfig, nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?)

Represents request frame that can be used with Overlay#highlightSourceOrder operation call.

Highlights the source order of the children of the DOM node with given id or with the given JavaScript object wrapper. Either nodeId or objectId must be specified.

See also

Constructors

HighlightSourceOrderRequest
Link copied to clipboard
fun HighlightSourceOrderRequest(sourceOrderConfig: SourceOrderConfig, nodeId: NodeId? = null, backendNodeId: BackendNodeId? = null, objectId: RemoteObjectId? = null)

Properties

backendNodeId
Link copied to clipboard
val backendNodeId: BackendNodeId? = null
Identifier of the backend node to highlight.
nodeId
Link copied to clipboard
val nodeId: NodeId? = null
Identifier of the node to highlight.
objectId
Link copied to clipboard
val objectId: RemoteObjectId? = null
JavaScript object id of the node to be highlighted.
sourceOrderConfig
Link copied to clipboard
val sourceOrderConfig: SourceOrderConfig
A descriptor for the appearance of the overlay drawing.

Sources

jvm source
Link copied to clipboard